File: /var/www/kevin-demo/wp-content/plugins/wpforms-sendinblue/templates/settings/new-account-form.php
<?php
/**
* Translatable provider name.
*
* @var string $core_name Integration name.
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<p>
<?php
printf(
wp_kses( /* translators: %s - URL to the Brevo Getting started page, %2$s - current provider name. */
__( 'If you need help connecting WPForms to %2$s, <a href="%1$s" rel="noopener noreferrer" target="_blank">read our documentation</a>.', 'wpforms-sendinblue' ),
[
'a' => [
'href' => [],
'target' => [],
'rel' => [],
],
]
),
esc_url( wpforms_utm_link( 'https://wpforms.com/docs/how-to-install-and-use-the-sendinblue-addon-with-wpforms/', 'Settings - Integration', 'Brevo (ex Sendinblue) Documentation' ) ),
esc_html( $core_name )
);
?>
</p>
<p>
<input type="text" name="api_key" class="wpforms-required"
placeholder="<?php printf( /* translators: %s - current provider name. */ esc_attr__( '%s API Key *', 'wpforms-sendinblue' ), esc_html( $core_name ) ); ?>">
<span class="error" style="display: none;">
<?php esc_html_e( 'Something went wrong while performing an AJAX request.', 'wpforms-sendinblue' ); ?>
</span>
</p>
<p>
<input type="text" name="account_name"
placeholder="<?php printf( /* translators: %s - current provider name. */ esc_attr__( '%s Account Nickname', 'wpforms-sendinblue' ), esc_html( $core_name ) ); ?>">
</p>
<p class="error form-error" style="display: none">
<?php esc_html_e( 'Something went wrong while performing an AJAX request.', 'wpforms-sendinblue' ); ?>
</p>